Add program. If the screen tag Indicates the timestamp. When the value is different from the last time, it will clear all programs of the current device.

 

Request

 

<?xml version="1.0" encoding="utf-8"?>

<sdk guid="##GUID">

    <in method="AddProgram">

        <screen guid="##guid">

            <!-- parameters-->

        </screen>

    </in>

</sdk>

<!--

  Description:

    1. Sdk.guid is the guid value obtained through the negotiation of the SDK protocol version.

-->

   Respond

 

<?xml version="1.0" encoding="utf-8"?>

<sdk guid="##GUID">

    <out method="AddProgram" result="##result">

        <files>

            <file name="##value" result="##result"/>

        </files>

    </out>

</sdk>

<!--

  Description :

    1. Sdk.guid is the guid value obtained through the negotiation of the SDK protocol version.

    2 . out.result:  (The error code refers to ErrorCode .)

    3 . out.result :(When the value is not "kSuccess", out has no child nodes.)

    4 . When all the files referenced in the program list exist, files have no child nodes, otherwise there are child nodes and carry corresponding error information.

    5 . The files tag may contain multiple child nodes file.

    6 . file.name :(file name)

    7 . file.result :(The error code refers to ErrorCode .)